博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:5065 次
发布时间:2019-06-12

本文共 2045 字,大约阅读时间需要 6 分钟。

  1. 显示所有评论
    {% for foo in ques.comments %}

      Comment[{

      { question.comments|length }}]

      {% for foo in question.comments %}
    • {
      { foo.author.username }}
      {
      { foo.creat_time }}

      {

      { foo.detail }}

    • {% endfor %}

     

  2. 所有评论排序
    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question = db.relationship('Question', backref=db.backref('comments',order_by=creat_time.desc))

     

  3. 显示评论条数
    {
    { ques.comments|length }}

    Comment[{

    { question.comments|length }}]

     

  4. 完成个人中心
{% extends 'base.html' %}{% block title %}Center{% endblock %}{% block head %}    
{% endblock %}{% block main %}

{
{ user.username }}



    Personal Information

  • Username:{

    { user.username }}

  • Id:{

    { user.id }}

  • Number of articles:{

    { user.question|length }}

{% endblock %}

 

1.个人中心的页面布局(html文件及相应的样式文件)

2.定义视图函数def usercenter(user_id):

3.向前端页面传递参数

4.页面显示相应数据

发布的全部问答

发布的全部评论

个人信息

5.各个页面链接到个人中心

转载于:https://www.cnblogs.com/1031353319qq/p/8034518.html

你可能感兴趣的文章
python numpy sum函数用法
查看>>
Linux中的SELinux详解--16
查看>>
php变量什么情况下加大括号{}
查看>>
less入门
查看>>
如何实现手游app瘦身?
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
21.Longest Palindromic Substring(最长回文子串)
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
Java处理多人同时读写文件的文件锁处理
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
判断文本框输入的文字长度
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
Scaling Pinterest - From 0 To 10s Of Billions Of Page Views A Month In Two Years
查看>>
SelectSort 选择排序
查看>>
关于android 加载https网页的问题
查看>>